com.sabro.jbusiness.gui
Enum WorkplaceTabbedPane.WTabbedPaneEventType

java.lang.Object
  extended by java.lang.Enum<WorkplaceTabbedPane.WTabbedPaneEventType>
      extended by com.sabro.jbusiness.gui.WorkplaceTabbedPane.WTabbedPaneEventType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WorkplaceTabbedPane.WTabbedPaneEventType>
Enclosing class:
WorkplaceTabbedPane

public static enum WorkplaceTabbedPane.WTabbedPaneEventType
extends java.lang.Enum<WorkplaceTabbedPane.WTabbedPaneEventType>


Enum Constant Summary
COMPONENT_ADDED
          Disparado quando um componente é adicionado
COMPONENT_MOVED_IN
          Disparado quando um componente é movido para dentro
COMPONENT_MOVED_OUT
          Disparado quando um componente é movido para fora
COMPONENT_REMOVED
          Disparado quando um componente é removido
COMPONENT_SELECTED
          Disparado quando um componente é selecionado
COMPONENT_UNSELECTED
          Disparado quando um componente é deselecionado
 
Method Summary
static WorkplaceTabbedPane.WTabbedPaneEventType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WorkplaceTabbedPane.WTabbedPaneEventType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

COMPONENT_SELECTED

public static final WorkplaceTabbedPane.WTabbedPaneEventType COMPONENT_SELECTED
Disparado quando um componente é selecionado


COMPONENT_UNSELECTED

public static final WorkplaceTabbedPane.WTabbedPaneEventType COMPONENT_UNSELECTED
Disparado quando um componente é deselecionado


COMPONENT_ADDED

public static final WorkplaceTabbedPane.WTabbedPaneEventType COMPONENT_ADDED
Disparado quando um componente é adicionado


COMPONENT_REMOVED

public static final WorkplaceTabbedPane.WTabbedPaneEventType COMPONENT_REMOVED
Disparado quando um componente é removido


COMPONENT_MOVED_IN

public static final WorkplaceTabbedPane.WTabbedPaneEventType COMPONENT_MOVED_IN
Disparado quando um componente é movido para dentro


COMPONENT_MOVED_OUT

public static final WorkplaceTabbedPane.WTabbedPaneEventType COMPONENT_MOVED_OUT
Disparado quando um componente é movido para fora

Method Detail

values

public static final WorkplaceTabbedPane.WTabbedPaneEventType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(WorkplaceTabbedPane.WTabbedPaneEventType c : WorkplaceTabbedPane.WTabbedPaneEventType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static WorkplaceTabbedPane.WTabbedPaneEventType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name